feat: scaffold open source monorepo (v1 MVP) - #1
Open
DamiMartinez wants to merge 1 commit into
Open
Conversation
Add full v1 MVP implementation: FastAPI backend with PostgreSQL (replacing BigQuery/GCS/Supabase), React+Vite frontend with custom JWT auth, Docker Compose self-hosting, and LiteLLM-powered LLM-as-judge evaluations. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docker compose upWhat's included
API (
api/)chatintel/database.py— 6 SQLAlchemy models: User, Conversation, Label, ConversationLabel, DataSource, Evaluationchatintel/auth.py— bcrypt password hashing + JWT signingchatintel/storage.py— local filesystem or S3/MinIO file storagechatintel/worker.py— Celery task: parse CSV/JSON/JSONL → conversations tablerouters/auth.py— signup, login, /merouters/ingest.py— CSV/JSON/JSONL upload with format validationrouters/conversations.py— paginated list + detail with labelsrouters/labels.py— CRUD + assign/remove labels on conversationsrouters/metrics.py— dashboard metrics (summary + daily time-series)routers/evaluations.py— LLM-as-judge via LiteLLM (helpfulness, tone, resolution, clarity)alembic/— full schema migrationWeb (
web/)AuthContext— localStorage token, no SupabaseRoot
docker-compose.yml— postgres+pgvector, redis, api, worker, web.env.example— all config vars documentedTest plan
cp .env.example .env && docker compose up— all services start🤖 Generated with Claude Code